@xmobitea/gn-typescript-client 2.6.6-tsc → 2.6.7-tsc
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.
|
@@ -599,6 +599,7 @@ export declare class ParameterCode {
|
|
|
599
599
|
static readonly Objects: string;
|
|
600
600
|
static readonly Indexes: string;
|
|
601
601
|
static readonly DatabaseSystem: string;
|
|
602
|
+
static readonly LogDatabaseSystem: string;
|
|
602
603
|
static readonly Cost: string;
|
|
603
604
|
static readonly MonthlyCost: string;
|
|
604
605
|
static readonly RequestCount: string;
|
|
@@ -600,6 +600,7 @@ ParameterCode.Collections = "collections";
|
|
|
600
600
|
ParameterCode.Objects = "objects";
|
|
601
601
|
ParameterCode.Indexes = "indexes";
|
|
602
602
|
ParameterCode.DatabaseSystem = "databaseSystem";
|
|
603
|
+
ParameterCode.LogDatabaseSystem = "logDatabaseSystem";
|
|
603
604
|
ParameterCode.Cost = "cost";
|
|
604
605
|
ParameterCode.MonthlyCost = "monthlyCost";
|
|
605
606
|
ParameterCode.RequestCount = "requestCount";
|
|
@@ -7,11 +7,12 @@ export declare namespace DashboardModels {
|
|
|
7
7
|
}
|
|
8
8
|
class FriendCatalogSettingsParam {
|
|
9
9
|
catalogId: string;
|
|
10
|
+
description: string;
|
|
10
11
|
forceAcceptFriend: boolean;
|
|
11
12
|
}
|
|
12
13
|
class ItemClassSettingsParam {
|
|
13
14
|
classId: string;
|
|
14
|
-
description
|
|
15
|
+
description: string;
|
|
15
16
|
}
|
|
16
17
|
class ItemCatalogSettingsParam {
|
|
17
18
|
catalogId: string;
|
|
@@ -20,12 +21,12 @@ export declare namespace DashboardModels {
|
|
|
20
21
|
}
|
|
21
22
|
class GroupCatalogSettingsParam {
|
|
22
23
|
catalogId: string;
|
|
23
|
-
description
|
|
24
|
+
description: string;
|
|
24
25
|
forceAcceptMember: boolean;
|
|
25
26
|
}
|
|
26
27
|
class TagSettingsParam {
|
|
27
28
|
key: string;
|
|
28
|
-
description
|
|
29
|
+
description: string;
|
|
29
30
|
index: boolean;
|
|
30
31
|
}
|
|
31
32
|
class DataSettingsParam {
|
|
@@ -50,7 +51,7 @@ export declare namespace DashboardModels {
|
|
|
50
51
|
}
|
|
51
52
|
class CharacterCatalogSettingsParam {
|
|
52
53
|
catalogId: string;
|
|
53
|
-
description
|
|
54
|
+
description: string;
|
|
54
55
|
}
|
|
55
56
|
class CharacterPlayerPermissionRulesParam {
|
|
56
57
|
addSegment?: PermissionRulesParam;
|
|
@@ -657,6 +658,7 @@ export declare namespace DashboardModels {
|
|
|
657
658
|
requestComplete?: boolean;
|
|
658
659
|
operationSystem?: boolean;
|
|
659
660
|
databaseSystem?: boolean;
|
|
661
|
+
logDatabaseSystem?: boolean;
|
|
660
662
|
cost?: boolean;
|
|
661
663
|
monthlyCost?: boolean;
|
|
662
664
|
}
|
|
@@ -830,6 +832,7 @@ export declare namespace DashboardModels {
|
|
|
830
832
|
operationSystem?: OperationSystemResponseData;
|
|
831
833
|
requestComplete?: Array<RequestCompleteResponseData>;
|
|
832
834
|
databaseSystem?: DatabaseSystemResponseData;
|
|
835
|
+
logDatabaseSystem?: DatabaseSystemResponseData;
|
|
833
836
|
cost?: CostResponseData;
|
|
834
837
|
monthlyCost?: CostResponseData;
|
|
835
838
|
}
|
|
@@ -36,6 +36,10 @@ export var DashboardModels;
|
|
|
36
36
|
StringDataMember({ code: ParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
|
|
37
37
|
__metadata("design:type", String)
|
|
38
38
|
], FriendCatalogSettingsParam.prototype, "catalogId", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
41
|
+
__metadata("design:type", String)
|
|
42
|
+
], FriendCatalogSettingsParam.prototype, "description", void 0);
|
|
39
43
|
__decorate([
|
|
40
44
|
BooleanDataMember({ code: ParameterCode.ForceAcceptFriend }),
|
|
41
45
|
__metadata("design:type", Boolean)
|
|
@@ -48,7 +52,7 @@ export var DashboardModels;
|
|
|
48
52
|
__metadata("design:type", String)
|
|
49
53
|
], ItemClassSettingsParam.prototype, "classId", void 0);
|
|
50
54
|
__decorate([
|
|
51
|
-
StringDataMember({ code: ParameterCode.Description
|
|
55
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
52
56
|
__metadata("design:type", String)
|
|
53
57
|
], ItemClassSettingsParam.prototype, "description", void 0);
|
|
54
58
|
DashboardModels.ItemClassSettingsParam = ItemClassSettingsParam;
|
|
@@ -74,7 +78,7 @@ export var DashboardModels;
|
|
|
74
78
|
__metadata("design:type", String)
|
|
75
79
|
], GroupCatalogSettingsParam.prototype, "catalogId", void 0);
|
|
76
80
|
__decorate([
|
|
77
|
-
StringDataMember({ code: ParameterCode.Description
|
|
81
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
78
82
|
__metadata("design:type", String)
|
|
79
83
|
], GroupCatalogSettingsParam.prototype, "description", void 0);
|
|
80
84
|
__decorate([
|
|
@@ -89,7 +93,7 @@ export var DashboardModels;
|
|
|
89
93
|
__metadata("design:type", String)
|
|
90
94
|
], TagSettingsParam.prototype, "key", void 0);
|
|
91
95
|
__decorate([
|
|
92
|
-
StringDataMember({ code: ParameterCode.Description
|
|
96
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
93
97
|
__metadata("design:type", String)
|
|
94
98
|
], TagSettingsParam.prototype, "description", void 0);
|
|
95
99
|
__decorate([
|
|
@@ -104,7 +108,7 @@ export var DashboardModels;
|
|
|
104
108
|
__metadata("design:type", String)
|
|
105
109
|
], DataSettingsParam.prototype, "key", void 0);
|
|
106
110
|
__decorate([
|
|
107
|
-
StringDataMember({ code: ParameterCode.Description
|
|
111
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
108
112
|
__metadata("design:type", String)
|
|
109
113
|
], DataSettingsParam.prototype, "description", void 0);
|
|
110
114
|
__decorate([
|
|
@@ -135,7 +139,7 @@ export var DashboardModels;
|
|
|
135
139
|
__metadata("design:type", Number)
|
|
136
140
|
], StatisticsSettingsParam.prototype, "initialValue", void 0);
|
|
137
141
|
__decorate([
|
|
138
|
-
StringDataMember({ code: ParameterCode.Description
|
|
142
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
139
143
|
__metadata("design:type", String)
|
|
140
144
|
], StatisticsSettingsParam.prototype, "description", void 0);
|
|
141
145
|
__decorate([
|
|
@@ -154,7 +158,7 @@ export var DashboardModels;
|
|
|
154
158
|
__metadata("design:type", Number)
|
|
155
159
|
], CurrencySettingsParam.prototype, "initialValue", void 0);
|
|
156
160
|
__decorate([
|
|
157
|
-
StringDataMember({ code: ParameterCode.Description
|
|
161
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
158
162
|
__metadata("design:type", String)
|
|
159
163
|
], CurrencySettingsParam.prototype, "description", void 0);
|
|
160
164
|
__decorate([
|
|
@@ -169,7 +173,7 @@ export var DashboardModels;
|
|
|
169
173
|
__metadata("design:type", String)
|
|
170
174
|
], CharacterCatalogSettingsParam.prototype, "catalogId", void 0);
|
|
171
175
|
__decorate([
|
|
172
|
-
StringDataMember({ code: ParameterCode.Description
|
|
176
|
+
StringDataMember({ code: ParameterCode.Description }),
|
|
173
177
|
__metadata("design:type", String)
|
|
174
178
|
], CharacterCatalogSettingsParam.prototype, "description", void 0);
|
|
175
179
|
DashboardModels.CharacterCatalogSettingsParam = CharacterCatalogSettingsParam;
|
|
@@ -2326,6 +2330,10 @@ export var DashboardModels;
|
|
|
2326
2330
|
BooleanDataMember({ code: ParameterCode.DatabaseSystem, isOptional: true }),
|
|
2327
2331
|
__metadata("design:type", Boolean)
|
|
2328
2332
|
], GetAnalyticsRequestData.prototype, "databaseSystem", void 0);
|
|
2333
|
+
__decorate([
|
|
2334
|
+
BooleanDataMember({ code: ParameterCode.LogDatabaseSystem, isOptional: true }),
|
|
2335
|
+
__metadata("design:type", Boolean)
|
|
2336
|
+
], GetAnalyticsRequestData.prototype, "logDatabaseSystem", void 0);
|
|
2329
2337
|
__decorate([
|
|
2330
2338
|
BooleanDataMember({ code: ParameterCode.Cost, isOptional: true }),
|
|
2331
2339
|
__metadata("design:type", Boolean)
|
|
@@ -2863,6 +2871,10 @@ export var DashboardModels;
|
|
|
2863
2871
|
GNHashtableDataMember({ code: ParameterCode.DatabaseSystem, isOptional: true }),
|
|
2864
2872
|
__metadata("design:type", DatabaseSystemResponseData)
|
|
2865
2873
|
], GetAnalyticsResponseData.prototype, "databaseSystem", void 0);
|
|
2874
|
+
__decorate([
|
|
2875
|
+
GNHashtableDataMember({ code: ParameterCode.LogDatabaseSystem, isOptional: true }),
|
|
2876
|
+
__metadata("design:type", DatabaseSystemResponseData)
|
|
2877
|
+
], GetAnalyticsResponseData.prototype, "logDatabaseSystem", void 0);
|
|
2866
2878
|
__decorate([
|
|
2867
2879
|
GNHashtableDataMember({ code: ParameterCode.Cost, isOptional: true }),
|
|
2868
2880
|
__metadata("design:type", CostResponseData)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmobitea/gn-typescript-client",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.7-tsc",
|
|
4
4
|
"description": "GearN Typescript Client SDK by XmobiTea (Pro)",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"bugs": {
|
|
59
59
|
"url": "https://github.com/XmobiTea-Family/GearN-typescript-client-sdk/issues"
|
|
60
60
|
},
|
|
61
|
+
"homepage": "https://gearn.net",
|
|
61
62
|
"engines": {
|
|
62
63
|
"node": ">=20.0.0"
|
|
63
64
|
}
|