@riocrypto/common 1.0.2388 → 1.0.2390
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/index.d.ts +3 -0
- package/build/index.js +3 -0
- package/build/types/inbound-bank-deposit.d.ts +16 -0
- package/build/types/inbound-bank-deposit.js +2 -0
- package/build/types/inbound-crypto-deposit-destination-type.d.ts +4 -0
- package/build/types/inbound-crypto-deposit-destination-type.js +8 -0
- package/build/types/inbound-crypto-transfer.d.ts +16 -0
- package/build/types/inbound-crypto-transfer.js +2 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -428,6 +428,9 @@ export * from "./types/transnetwork-order-type";
|
|
|
428
428
|
export * from "./types/transnetwork-settlement-type";
|
|
429
429
|
export * from "./types/emarkets-bot-status";
|
|
430
430
|
export * from "./types/transnetwork-bot-status";
|
|
431
|
+
export * from "./types/inbound-bank-deposit";
|
|
432
|
+
export * from "./types/inbound-crypto-transfer";
|
|
433
|
+
export * from "./types/inbound-crypto-deposit-destination-type";
|
|
431
434
|
export * from "./classes/KYCFieldClass";
|
|
432
435
|
export * from "./classes/KYCFileClass";
|
|
433
436
|
export * from "./classes/CountryAsset";
|
package/build/index.js
CHANGED
|
@@ -444,6 +444,9 @@ __exportStar(require("./types/transnetwork-order-type"), exports);
|
|
|
444
444
|
__exportStar(require("./types/transnetwork-settlement-type"), exports);
|
|
445
445
|
__exportStar(require("./types/emarkets-bot-status"), exports);
|
|
446
446
|
__exportStar(require("./types/transnetwork-bot-status"), exports);
|
|
447
|
+
__exportStar(require("./types/inbound-bank-deposit"), exports);
|
|
448
|
+
__exportStar(require("./types/inbound-crypto-transfer"), exports);
|
|
449
|
+
__exportStar(require("./types/inbound-crypto-deposit-destination-type"), exports);
|
|
447
450
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
448
451
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
449
452
|
__exportStar(require("./classes/CountryAsset"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Fiat } from "./fiat";
|
|
2
|
+
import { TreasuryProvider } from "./treasury-provider";
|
|
3
|
+
export interface InboundBankDeposit {
|
|
4
|
+
id: string;
|
|
5
|
+
createdAt: Date;
|
|
6
|
+
amount: number;
|
|
7
|
+
fiat: Fiat;
|
|
8
|
+
originAccountHolderName: string;
|
|
9
|
+
originAccountNumber?: string;
|
|
10
|
+
originCLABE?: string;
|
|
11
|
+
originBank?: string;
|
|
12
|
+
originCCI?: string;
|
|
13
|
+
reference?: string;
|
|
14
|
+
destinationTreasuryProvider?: TreasuryProvider;
|
|
15
|
+
destinationProviderId?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InboundCryptoDepositDestinationType = void 0;
|
|
4
|
+
var InboundCryptoDepositDestinationType;
|
|
5
|
+
(function (InboundCryptoDepositDestinationType) {
|
|
6
|
+
InboundCryptoDepositDestinationType["TreasuryProvider"] = "treasuryProvider";
|
|
7
|
+
InboundCryptoDepositDestinationType["TransactionalFireblocksVault"] = "transactionalFireblocksVault";
|
|
8
|
+
})(InboundCryptoDepositDestinationType = exports.InboundCryptoDepositDestinationType || (exports.InboundCryptoDepositDestinationType = {}));
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Crypto } from "./crypto";
|
|
2
|
+
import { InboundCryptoDepositDestinationType } from "./inbound-crypto-deposit-destination-type";
|
|
3
|
+
import { TreasuryProvider } from "./treasury-provider";
|
|
4
|
+
export interface InboundCryptoDeposit {
|
|
5
|
+
id: string;
|
|
6
|
+
createdAt: Date;
|
|
7
|
+
amount: number;
|
|
8
|
+
crypto: Crypto;
|
|
9
|
+
originBlockchainAddress: string;
|
|
10
|
+
destinationBlockchainAddress: string;
|
|
11
|
+
blockchainTxId: string;
|
|
12
|
+
destinationType: InboundCryptoDepositDestinationType;
|
|
13
|
+
destinationTreasuryProvider?: TreasuryProvider;
|
|
14
|
+
destinationTransactionalFireblocksVaultId?: string;
|
|
15
|
+
destinationProviderId?: string;
|
|
16
|
+
}
|