@reachu/database 1.0.237 → 1.0.238
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.
|
@@ -13,6 +13,9 @@ var Currency;
|
|
|
13
13
|
Currency["HUF"] = "HUF";
|
|
14
14
|
Currency["PLN"] = "PLN";
|
|
15
15
|
Currency["RON"] = "RON";
|
|
16
|
+
Currency["DKK"] = "DKK";
|
|
17
|
+
Currency["SEK"] = "SEK";
|
|
18
|
+
Currency["CHF"] = "CHF";
|
|
16
19
|
})(Currency || (Currency = {}));
|
|
17
20
|
exports.currencies = [
|
|
18
21
|
Currency.EUR,
|
|
@@ -24,6 +27,9 @@ exports.currencies = [
|
|
|
24
27
|
Currency.HUF,
|
|
25
28
|
Currency.PLN,
|
|
26
29
|
Currency.RON,
|
|
30
|
+
Currency.DKK,
|
|
31
|
+
Currency.SEK,
|
|
32
|
+
Currency.CHF,
|
|
27
33
|
];
|
|
28
34
|
exports.default = Currency;
|
|
29
35
|
//# sourceMappingURL=Currency.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Currency.js","sourceRoot":"","sources":["../../src/staticData/Currency.ts"],"names":[],"mappings":";;;AAAA,IAAK,
|
|
1
|
+
{"version":3,"file":"Currency.js","sourceRoot":"","sources":["../../src/staticData/Currency.ts"],"names":[],"mappings":";;;AAAA,IAAK,QAcJ;AAdD,WAAK,QAAQ;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;IACX,uBAAW,CAAA;AACb,CAAC,EAdI,QAAQ,KAAR,QAAQ,QAcZ;AAEY,QAAA,UAAU,GAAG;IACxB,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;IACZ,QAAQ,CAAC,GAAG;CACb,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
|
|
@@ -2427,8 +2427,8 @@
|
|
|
2427
2427
|
"affectsGlobalScope": false
|
|
2428
2428
|
},
|
|
2429
2429
|
"../src/staticdata/currency.ts": {
|
|
2430
|
-
"version": "
|
|
2431
|
-
"signature": "
|
|
2430
|
+
"version": "0a07f990e93b18d17791d5ae7e442b9366e53af090570a20f8c9846928f39976",
|
|
2431
|
+
"signature": "6b45dca31b2075015520af38d890859e7935cc0ae86b898078911d100da52707",
|
|
2432
2432
|
"affectsGlobalScope": false
|
|
2433
2433
|
},
|
|
2434
2434
|
"../src/entity/price.entity.ts": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reachu/database",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.238",
|
|
4
4
|
"description": "reachu-database",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"author": "reachu",
|
|
22
22
|
"license": "ISC",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@reachu/logger": "1.0.
|
|
25
|
-
"@reachu/utils": "1.0.
|
|
24
|
+
"@reachu/logger": "1.0.238",
|
|
25
|
+
"@reachu/utils": "1.0.238",
|
|
26
26
|
"dotenv": "8.0.0",
|
|
27
27
|
"eventemitter2": "^6.4.9",
|
|
28
28
|
"express": "4.17.1",
|
|
@@ -9,6 +9,9 @@ enum Currency {
|
|
|
9
9
|
HUF = 'HUF',
|
|
10
10
|
PLN = 'PLN',
|
|
11
11
|
RON = 'RON',
|
|
12
|
+
DKK = 'DKK',
|
|
13
|
+
SEK = 'SEK',
|
|
14
|
+
CHF = 'CHF',
|
|
12
15
|
}
|
|
13
16
|
|
|
14
17
|
export const currencies = [
|
|
@@ -21,6 +24,9 @@ export const currencies = [
|
|
|
21
24
|
Currency.HUF,
|
|
22
25
|
Currency.PLN,
|
|
23
26
|
Currency.RON,
|
|
27
|
+
Currency.DKK,
|
|
28
|
+
Currency.SEK,
|
|
29
|
+
Currency.CHF,
|
|
24
30
|
];
|
|
25
31
|
|
|
26
32
|
export default Currency;
|