@riocrypto/common 1.0.2388 → 1.0.2389

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,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/unrecognized-bank-payment";
432
+ export * from "./types/unrecognized-crypto-payment";
433
+ export * from "./types/unrecognized-crypto-payment-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/unrecognized-bank-payment"), exports);
448
+ __exportStar(require("./types/unrecognized-crypto-payment"), exports);
449
+ __exportStar(require("./types/unrecognized-crypto-payment-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 UnrecognizedBankPayment {
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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export declare enum UnrecognizedCryptoPaymentDestinationType {
2
+ TreasuryProvider = "treasuryProvider",
3
+ TransactionalFireblocksVault = "transactionalFireblocksVault"
4
+ }
@@ -0,0 +1,8 @@
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 = {}));
@@ -0,0 +1,16 @@
1
+ import { Crypto } from "./crypto";
2
+ import { TreasuryProvider } from "./treasury-provider";
3
+ import { UnrecognizedCryptoPaymentDestinationType } from "./unrecognized-crypto-payment-destination-type";
4
+ export interface UnrecognizedCryptoPayment {
5
+ id: string;
6
+ createdAt: Date;
7
+ amount: number;
8
+ crypto: Crypto;
9
+ originBlockchainAddress: string;
10
+ destinationBlockchainAddress: string;
11
+ blockchainTxId: string;
12
+ destinationType: UnrecognizedCryptoPaymentDestinationType;
13
+ destinationTreasuryProvider?: TreasuryProvider;
14
+ destinationTransactionalFireblocksVaultId?: string;
15
+ destinationProviderId?: string;
16
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2388",
3
+ "version": "1.0.2389",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",