@xmobitea/gn-typescript-client 2.3.1 → 2.3.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/GNServerSettingsConfig.debug.json +1 -3
- package/dist/gn.js.client.js +14 -1
- package/dist/gn.js.client.min.js +1 -1
- package/dist/index.js +14 -1
- package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +2 -0
- package/dist/runtime/entity/models/DashboardModels.d.ts +4 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1033,7 +1033,7 @@ GNParameterCode.GrantGroupItem = "GrantGroupItem";
|
|
|
1033
1033
|
GNParameterCode.GetMembers = "GetMembers";
|
|
1034
1034
|
GNParameterCode.AddMember = "AddMember";
|
|
1035
1035
|
GNParameterCode.RemoveMember = "RemoveMember";
|
|
1036
|
-
GNParameterCode.SendGroupMessage = "
|
|
1036
|
+
GNParameterCode.SendGroupMessage = "SendGroupMessage";
|
|
1037
1037
|
GNParameterCode.GetGroupMessage = "GetGroupMessage";
|
|
1038
1038
|
GNParameterCode.GetGroupsWithDisplayName = "GetGroupsWithDisplayName";
|
|
1039
1039
|
GNParameterCode.SetItemStatistics = "SetItemStatistics";
|
|
@@ -1261,6 +1261,8 @@ GNParameterCode.AnalyticsPrice = "AnalyticsPrice";
|
|
|
1261
1261
|
GNParameterCode.IssuerId = "IssuerId";
|
|
1262
1262
|
GNParameterCode.KeyId = "KeyId";
|
|
1263
1263
|
GNParameterCode.P8Content = "P8Content";
|
|
1264
|
+
GNParameterCode.ServerAllocation = "ServerAllocation";
|
|
1265
|
+
GNParameterCode.Enable = "Enable";
|
|
1264
1266
|
|
|
1265
1267
|
;// ./src/runtime/constant/parameterCode/ParameterCode.ts
|
|
1266
1268
|
class ParameterCode {
|
|
@@ -10936,6 +10938,13 @@ var DashboardModels;
|
|
|
10936
10938
|
DashboardModels_metadata("design:type", AdvancedSettingsParam)
|
|
10937
10939
|
], RuleParam.prototype, "advancedSettings", void 0);
|
|
10938
10940
|
DashboardModels.RuleParam = RuleParam;
|
|
10941
|
+
class ServerAllocationParam {
|
|
10942
|
+
}
|
|
10943
|
+
DashboardModels_decorate([
|
|
10944
|
+
BooleanDataMember({ code: GNParameterCode.Enable }),
|
|
10945
|
+
DashboardModels_metadata("design:type", Boolean)
|
|
10946
|
+
], ServerAllocationParam.prototype, "enable", void 0);
|
|
10947
|
+
DashboardModels.ServerAllocationParam = ServerAllocationParam;
|
|
10939
10948
|
class MatchmakingQueueSettingsParam {
|
|
10940
10949
|
}
|
|
10941
10950
|
DashboardModels_decorate([
|
|
@@ -10950,6 +10959,10 @@ var DashboardModels;
|
|
|
10950
10959
|
GNHashtableDataMember({ code: GNParameterCode.TicketSize }),
|
|
10951
10960
|
DashboardModels_metadata("design:type", SizeParam)
|
|
10952
10961
|
], MatchmakingQueueSettingsParam.prototype, "ticketSize", void 0);
|
|
10962
|
+
DashboardModels_decorate([
|
|
10963
|
+
GNHashtableDataMember({ code: GNParameterCode.ServerAllocation }),
|
|
10964
|
+
DashboardModels_metadata("design:type", ServerAllocationParam)
|
|
10965
|
+
], MatchmakingQueueSettingsParam.prototype, "serverAllocation", void 0);
|
|
10953
10966
|
DashboardModels_decorate([
|
|
10954
10967
|
GNArrayDataMember({ code: GNParameterCode.Teams, isOptional: true, elementCls: TeamParam }),
|
|
10955
10968
|
DashboardModels_metadata("design:type", Array)
|
|
@@ -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;
|
package/package.json
CHANGED