@riocrypto/common-server 1.0.2464 → 1.0.2466
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.
- package/build/models/bank-account.d.ts +2 -0
- package/build/models/bank-account.js +3 -0
- package/build/models/crypto-address.d.ts +2 -0
- package/build/models/crypto-address.js +3 -0
- package/build/models/telegram-session.d.ts +2 -0
- package/build/models/telegram-session.js +3 -0
- package/package.json +2 -2
|
@@ -12,6 +12,7 @@ interface BankAccountAttrs {
|
|
|
12
12
|
CCI?: string;
|
|
13
13
|
CLABE?: string;
|
|
14
14
|
notes?: string;
|
|
15
|
+
twoFactorApproved?: boolean;
|
|
15
16
|
advancedVerificationStatus?: BankAccountVerificationStatus;
|
|
16
17
|
bridgeExternalAccountId?: string;
|
|
17
18
|
availablePayoutAdvancesAmount?: number;
|
|
@@ -30,6 +31,7 @@ interface BankAccountDoc extends Document {
|
|
|
30
31
|
CCI?: string;
|
|
31
32
|
CLABE?: string;
|
|
32
33
|
notes?: string;
|
|
34
|
+
twoFactorApproved?: boolean;
|
|
33
35
|
advancedVerificationStatus?: BankAccountVerificationStatus;
|
|
34
36
|
bridgeExternalAccountId?: string;
|
|
35
37
|
availablePayoutAdvancesAmount?: number;
|
|
@@ -8,6 +8,7 @@ interface CryptoAddressAttrs {
|
|
|
8
8
|
approved: boolean;
|
|
9
9
|
lastChecked: Date;
|
|
10
10
|
label?: string;
|
|
11
|
+
twoFactorApproved?: boolean;
|
|
11
12
|
advancedVerificationStatus?: AddressVerificationStatus;
|
|
12
13
|
fireblocksExternalWalletId?: string;
|
|
13
14
|
isFireblocksWhitelisted?: boolean;
|
|
@@ -21,6 +22,7 @@ interface CryptoAddressDoc extends mongoose.Document {
|
|
|
21
22
|
approved: boolean;
|
|
22
23
|
lastChecked: Date;
|
|
23
24
|
label?: string;
|
|
25
|
+
twoFactorApproved?: boolean;
|
|
24
26
|
advancedVerificationStatus?: AddressVerificationStatus;
|
|
25
27
|
fireblocksExternalWalletId?: string;
|
|
26
28
|
isFireblocksWhitelisted?: boolean;
|
|
@@ -2,6 +2,7 @@ import { Country, Fiat, Side, Crypto, TwoWaySettlementType, DeferredPaymentType
|
|
|
2
2
|
import mongoose from "mongoose";
|
|
3
3
|
interface TelegramSessionAttrs {
|
|
4
4
|
createdAt: Date;
|
|
5
|
+
userId?: string;
|
|
5
6
|
telegramUsername?: string;
|
|
6
7
|
telegramUserId?: number;
|
|
7
8
|
telegramChatId: number;
|
|
@@ -29,6 +30,7 @@ interface TelegramSessionAttrs {
|
|
|
29
30
|
}
|
|
30
31
|
interface TelegramSessionDoc extends mongoose.Document {
|
|
31
32
|
createdAt: Date;
|
|
33
|
+
userId?: string;
|
|
32
34
|
telegramUsername?: string;
|
|
33
35
|
telegramUserId?: number;
|
|
34
36
|
telegramChatId: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riocrypto/common-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2466",
|
|
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.2229",
|
|
32
32
|
"@types/express": "^4.17.13",
|
|
33
33
|
"axios": "^1.7.4",
|
|
34
34
|
"crypto-js": "^4.2.0",
|