@riocrypto/common-server 1.0.1396 → 1.0.1398

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.
@@ -5,6 +5,7 @@ interface MarketDataAttrs {
5
5
  value: number;
6
6
  valueWithMarkups: number;
7
7
  lastUpdated: Date;
8
+ frozen?: boolean;
8
9
  };
9
10
  };
10
11
  conversionRatesFromUSD: {
@@ -12,6 +13,7 @@ interface MarketDataAttrs {
12
13
  value: number;
13
14
  valueWithMarkups: number;
14
15
  lastUpdated: Date;
16
+ frozen?: boolean;
15
17
  };
16
18
  };
17
19
  totalFireblocksLiquidityUSD: {
@@ -29,6 +31,7 @@ interface MarketDataDoc extends Document {
29
31
  value: number;
30
32
  valueWithMarkups: number;
31
33
  lastUpdated: Date;
34
+ frozen?: boolean;
32
35
  };
33
36
  };
34
37
  conversionRatesFromUSD: {
@@ -36,6 +39,7 @@ interface MarketDataDoc extends Document {
36
39
  value: number;
37
40
  valueWithMarkups: number;
38
41
  lastUpdated: Date;
42
+ frozen?: boolean;
39
43
  };
40
44
  };
41
45
  totalFireblocksLiquidityUSD: {
@@ -95,6 +95,7 @@ interface UserAttrs {
95
95
  status?: KYCStatus;
96
96
  personalId?: string;
97
97
  taxId?: string;
98
+ isResident?: boolean;
98
99
  files?: {
99
100
  certificateOfIncorporation?: string;
100
101
  KYCReport?: string;
@@ -223,6 +224,7 @@ interface UserDoc extends Document {
223
224
  status?: KYCStatus;
224
225
  personalId?: string;
225
226
  taxId?: string;
227
+ isResident?: boolean;
226
228
  files?: {
227
229
  certificateOfIncorporation?: string;
228
230
  KYCReport?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1396",
3
+ "version": "1.0.1398",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -27,7 +27,7 @@
27
27
  "@everapi/currencyapi-js": "^1.0.6",
28
28
  "@google-cloud/storage": "^6.9.5",
29
29
  "@google-cloud/vision": "^4.0.2",
30
- "@riocrypto/common": "^1.0.1226",
30
+ "@riocrypto/common": "^1.0.1230",
31
31
  "@types/express": "^4.17.13",
32
32
  "axios": "^0.27.2",
33
33
  "ccxt": "^3.0.30",