@riocrypto/common-server 1.0.1935 → 1.0.1936
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.
|
@@ -2,43 +2,43 @@ import mongoose from "mongoose";
|
|
|
2
2
|
import { Fiat } from "@riocrypto/common";
|
|
3
3
|
interface InternalBalancesAttrs {
|
|
4
4
|
[provider: string]: {
|
|
5
|
-
[key in
|
|
5
|
+
[key in Fiat & Crypto]: number;
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
8
|
interface InternalBalancesDoc extends mongoose.Document {
|
|
9
9
|
id: string;
|
|
10
10
|
fireblocksVault: {
|
|
11
|
-
[key in
|
|
11
|
+
[key in Fiat & Crypto]: number;
|
|
12
12
|
};
|
|
13
13
|
bitso: {
|
|
14
|
-
[key in
|
|
14
|
+
[key in Fiat & Crypto]: number;
|
|
15
15
|
};
|
|
16
16
|
binance: {
|
|
17
|
-
[key in
|
|
17
|
+
[key in Fiat & Crypto]: number;
|
|
18
18
|
};
|
|
19
19
|
brex: {
|
|
20
|
-
[key in
|
|
20
|
+
[key in Fiat & Crypto]: number;
|
|
21
21
|
};
|
|
22
22
|
fondeadora: {
|
|
23
|
-
[key in
|
|
23
|
+
[key in Fiat & Crypto]: number;
|
|
24
24
|
};
|
|
25
25
|
bbva: {
|
|
26
|
-
[key in
|
|
26
|
+
[key in Fiat & Crypto]: number;
|
|
27
27
|
};
|
|
28
28
|
bancrea: {
|
|
29
|
-
[key in
|
|
29
|
+
[key in Fiat & Crypto]: number;
|
|
30
30
|
};
|
|
31
31
|
interbank: {
|
|
32
|
-
[key in
|
|
32
|
+
[key in Fiat & Crypto]: number;
|
|
33
33
|
};
|
|
34
34
|
jpmorgan: {
|
|
35
|
-
[key in
|
|
35
|
+
[key in Fiat & Crypto]: number;
|
|
36
36
|
};
|
|
37
37
|
circle: {
|
|
38
|
-
[key in
|
|
38
|
+
[key in Fiat & Crypto]: number;
|
|
39
39
|
};
|
|
40
40
|
coinbase: {
|
|
41
|
-
[key in
|
|
41
|
+
[key in Fiat & Crypto]: number;
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
44
|
interface InternalBalancesModel extends mongoose.Model<InternalBalancesDoc> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riocrypto/common-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1936",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@google-cloud/secret-manager": "^5.3.0",
|
|
29
29
|
"@google-cloud/storage": "^6.9.5",
|
|
30
30
|
"@hyperdx/node-opentelemetry": "^0.7.0",
|
|
31
|
-
"@riocrypto/common": "^1.0.
|
|
31
|
+
"@riocrypto/common": "^1.0.1712",
|
|
32
32
|
"@types/express": "^4.17.13",
|
|
33
33
|
"axios": "^1.7.4",
|
|
34
34
|
"crypto-js": "^4.2.0",
|