@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 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/unrecognized-bank-payment";
432
- export * from "./types/unrecognized-crypto-payment";
433
- export * from "./types/unrecognized-crypto-payment-destination-type";
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/unrecognized-bank-payment"), exports);
448
- __exportStar(require("./types/unrecognized-crypto-payment"), exports);
449
- __exportStar(require("./types/unrecognized-crypto-payment-destination-type"), 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);
450
450
  __exportStar(require("./classes/KYCFieldClass"), exports);
451
451
  __exportStar(require("./classes/KYCFileClass"), exports);
452
452
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -1,6 +1,6 @@
1
1
  import { Fiat } from "./fiat";
2
2
  import { TreasuryProvider } from "./treasury-provider";
3
- export interface UnrecognizedBankPayment {
3
+ export interface InboundBankDeposit {
4
4
  id: string;
5
5
  createdAt: Date;
6
6
  amount: number;
@@ -1,4 +1,4 @@
1
- export declare enum UnrecognizedCryptoPaymentDestinationType {
1
+ export declare enum InboundCryptoDepositDestinationType {
2
2
  TreasuryProvider = "treasuryProvider",
3
3
  TransactionalFireblocksVault = "transactionalFireblocksVault"
4
4
  }
@@ -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
- import { UnrecognizedCryptoPaymentDestinationType } from "./unrecognized-crypto-payment-destination-type";
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: UnrecognizedCryptoPaymentDestinationType;
12
+ destinationType: InboundCryptoDepositDestinationType;
13
13
  destinationTreasuryProvider?: TreasuryProvider;
14
14
  destinationTransactionalFireblocksVaultId?: string;
15
15
  destinationProviderId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2389",
3
+ "version": "1.0.2390",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -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 = {}));