@ruvice/my-maple-models 0.1.9 → 0.1.11
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.
|
@@ -62,3 +62,8 @@ export var MapleServer;
|
|
|
62
62
|
MapleServer["KMS"] = "KMS";
|
|
63
63
|
MapleServer["SEA"] = "SEA";
|
|
64
64
|
})(MapleServer || (MapleServer = {}));
|
|
65
|
+
export var SymbolRegion;
|
|
66
|
+
(function (SymbolRegion) {
|
|
67
|
+
SymbolRegion["Arcane"] = "ARC";
|
|
68
|
+
SymbolRegion["Grandis"] = "AUT";
|
|
69
|
+
})(SymbolRegion || (SymbolRegion = {}));
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EquipmentTitleModel } from "./Equipment/equipmentTypes";
|
|
2
2
|
import { ExpData, Ocid } from "../api/apiTypes";
|
|
3
3
|
import { Equipment } from "./Equipment/equipmentTypes";
|
|
4
|
-
import { CharacterClass } from "./Generic/enums";
|
|
4
|
+
import { CharacterClass, SymbolRegion } from "./Generic/enums";
|
|
5
5
|
export interface Character {
|
|
6
6
|
name: string;
|
|
7
7
|
ocid: Ocid;
|
|
@@ -63,6 +63,7 @@ export interface MapleSymbol {
|
|
|
63
63
|
symbol_exp_rate: string;
|
|
64
64
|
symbol_growth_count: number;
|
|
65
65
|
symbol_require_growth_count: number;
|
|
66
|
+
region: SymbolRegion;
|
|
66
67
|
}
|
|
67
68
|
export interface StatInfo {
|
|
68
69
|
date: string;
|