@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.
@@ -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
+ }
@@ -537,4 +537,6 @@ export declare class GNParameterCode {
537
537
  static readonly IssuerId: string;
538
538
  static readonly KeyId: string;
539
539
  static readonly P8Content: string;
540
+ static readonly ServerAllocation: string;
541
+ static readonly Enable: string;
540
542
  }
@@ -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 = "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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmobitea/gn-typescript-client",
3
- "version": "2.3.1-esnext",
3
+ "version": "2.3.2-esnext",
4
4
  "description": "",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
@@ -40,4 +40,4 @@
40
40
  "directories": {
41
41
  "test": "test"
42
42
  }
43
- }
43
+ }