@riocrypto/common 1.0.2389 → 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 -3
- package/build/index.js +3 -3
- package/build/types/{unrecognized-bank-payment.d.ts → inbound-bank-deposit.d.ts} +1 -1
- package/build/types/{unrecognized-crypto-payment-destination-type.d.ts → inbound-crypto-deposit-destination-type.d.ts} +1 -1
- package/build/types/inbound-crypto-deposit-destination-type.js +8 -0
- package/build/types/{unrecognized-crypto-payment.d.ts → inbound-crypto-transfer.d.ts} +3 -3
- package/package.json +1 -1
- package/build/types/unrecognized-crypto-payment-destination-type.js +0 -8
- /package/build/types/{unrecognized-bank-payment.js → inbound-bank-deposit.js} +0 -0
- /package/build/types/{unrecognized-crypto-payment.js → inbound-crypto-transfer.js} +0 -0
package/build/index.d.ts
CHANGED
|
@@ -428,9 +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/
|
|
432
|
-
export * from "./types/
|
|
433
|
-
export * from "./types/
|
|
431
|
+
export * from "./types/inbound-bank-deposit";
|
|
432
|
+
export * from "./types/inbound-crypto-transfer";
|
|
433
|
+
export * from "./types/inbound-crypto-deposit-destination-type";
|
|
434
434
|
export * from "./classes/KYCFieldClass";
|
|
435
435
|
export * from "./classes/KYCFileClass";
|
|
436
436
|
export * from "./classes/CountryAsset";
|
package/build/index.js
CHANGED
|
@@ -444,9 +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/
|
|
448
|
-
__exportStar(require("./types/
|
|
449
|
-
__exportStar(require("./types/
|
|
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);
|
|
450
450
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
451
451
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
452
452
|
__exportStar(require("./classes/CountryAsset"), exports);
|
|
@@ -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 = {}));
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Crypto } from "./crypto";
|
|
2
|
+
import { InboundCryptoDepositDestinationType } from "./inbound-crypto-deposit-destination-type";
|
|
2
3
|
import { TreasuryProvider } from "./treasury-provider";
|
|
3
|
-
|
|
4
|
-
export interface UnrecognizedCryptoPayment {
|
|
4
|
+
export interface InboundCryptoDeposit {
|
|
5
5
|
id: string;
|
|
6
6
|
createdAt: Date;
|
|
7
7
|
amount: number;
|
|
@@ -9,7 +9,7 @@ export interface UnrecognizedCryptoPayment {
|
|
|
9
9
|
originBlockchainAddress: string;
|
|
10
10
|
destinationBlockchainAddress: string;
|
|
11
11
|
blockchainTxId: string;
|
|
12
|
-
destinationType:
|
|
12
|
+
destinationType: InboundCryptoDepositDestinationType;
|
|
13
13
|
destinationTreasuryProvider?: TreasuryProvider;
|
|
14
14
|
destinationTransactionalFireblocksVaultId?: string;
|
|
15
15
|
destinationProviderId?: string;
|
package/package.json
CHANGED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UnrecognizedCryptoPaymentDestinationType = void 0;
|
|
4
|
-
var UnrecognizedCryptoPaymentDestinationType;
|
|
5
|
-
(function (UnrecognizedCryptoPaymentDestinationType) {
|
|
6
|
-
UnrecognizedCryptoPaymentDestinationType["TreasuryProvider"] = "treasuryProvider";
|
|
7
|
-
UnrecognizedCryptoPaymentDestinationType["TransactionalFireblocksVault"] = "transactionalFireblocksVault";
|
|
8
|
-
})(UnrecognizedCryptoPaymentDestinationType = exports.UnrecognizedCryptoPaymentDestinationType || (exports.UnrecognizedCryptoPaymentDestinationType = {}));
|
|
File without changes
|
|
File without changes
|