@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
|
@@ -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
|
+
}
|
package/dist/gn.js.client.js
CHANGED
|
@@ -3837,7 +3837,7 @@ GNParameterCode.GrantGroupItem = "GrantGroupItem";
|
|
|
3837
3837
|
GNParameterCode.GetMembers = "GetMembers";
|
|
3838
3838
|
GNParameterCode.AddMember = "AddMember";
|
|
3839
3839
|
GNParameterCode.RemoveMember = "RemoveMember";
|
|
3840
|
-
GNParameterCode.SendGroupMessage = "
|
|
3840
|
+
GNParameterCode.SendGroupMessage = "SendGroupMessage";
|
|
3841
3841
|
GNParameterCode.GetGroupMessage = "GetGroupMessage";
|
|
3842
3842
|
GNParameterCode.GetGroupsWithDisplayName = "GetGroupsWithDisplayName";
|
|
3843
3843
|
GNParameterCode.SetItemStatistics = "SetItemStatistics";
|
|
@@ -4065,6 +4065,8 @@ GNParameterCode.AnalyticsPrice = "AnalyticsPrice";
|
|
|
4065
4065
|
GNParameterCode.IssuerId = "IssuerId";
|
|
4066
4066
|
GNParameterCode.KeyId = "KeyId";
|
|
4067
4067
|
GNParameterCode.P8Content = "P8Content";
|
|
4068
|
+
GNParameterCode.ServerAllocation = "ServerAllocation";
|
|
4069
|
+
GNParameterCode.Enable = "Enable";
|
|
4068
4070
|
|
|
4069
4071
|
;// ./src/runtime/constant/parameterCode/ParameterCode.ts
|
|
4070
4072
|
class ParameterCode {
|
|
@@ -13740,6 +13742,13 @@ var DashboardModels;
|
|
|
13740
13742
|
DashboardModels_metadata("design:type", AdvancedSettingsParam)
|
|
13741
13743
|
], RuleParam.prototype, "advancedSettings", void 0);
|
|
13742
13744
|
DashboardModels.RuleParam = RuleParam;
|
|
13745
|
+
class ServerAllocationParam {
|
|
13746
|
+
}
|
|
13747
|
+
DashboardModels_decorate([
|
|
13748
|
+
BooleanDataMember({ code: GNParameterCode.Enable }),
|
|
13749
|
+
DashboardModels_metadata("design:type", Boolean)
|
|
13750
|
+
], ServerAllocationParam.prototype, "enable", void 0);
|
|
13751
|
+
DashboardModels.ServerAllocationParam = ServerAllocationParam;
|
|
13743
13752
|
class MatchmakingQueueSettingsParam {
|
|
13744
13753
|
}
|
|
13745
13754
|
DashboardModels_decorate([
|
|
@@ -13754,6 +13763,10 @@ var DashboardModels;
|
|
|
13754
13763
|
GNHashtableDataMember({ code: GNParameterCode.TicketSize }),
|
|
13755
13764
|
DashboardModels_metadata("design:type", SizeParam)
|
|
13756
13765
|
], MatchmakingQueueSettingsParam.prototype, "ticketSize", void 0);
|
|
13766
|
+
DashboardModels_decorate([
|
|
13767
|
+
GNHashtableDataMember({ code: GNParameterCode.ServerAllocation }),
|
|
13768
|
+
DashboardModels_metadata("design:type", ServerAllocationParam)
|
|
13769
|
+
], MatchmakingQueueSettingsParam.prototype, "serverAllocation", void 0);
|
|
13757
13770
|
DashboardModels_decorate([
|
|
13758
13771
|
GNArrayDataMember({ code: GNParameterCode.Teams, isOptional: true, elementCls: TeamParam }),
|
|
13759
13772
|
DashboardModels_metadata("design:type", Array)
|