@riocrypto/common 1.0.2252 → 1.0.2253

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
@@ -371,6 +371,10 @@ export * from "./types/axe-slack-thread";
371
371
  export * from "./types/auth-activity-slack-thread";
372
372
  export * from "./types/twap-session";
373
373
  export * from "./types/twap-session-status";
374
+ export * from "./types/bulk-crypto-payout";
375
+ export * from "./types/bulk-crypto-payout-status";
376
+ export * from "./types/bulk-bank-payout";
377
+ export * from "./types/bulk-bank-payout-status";
374
378
  export * from "./classes/KYCFieldClass";
375
379
  export * from "./classes/KYCFileClass";
376
380
  export * from "./classes/CountryAsset";
package/build/index.js CHANGED
@@ -387,6 +387,10 @@ __exportStar(require("./types/axe-slack-thread"), exports);
387
387
  __exportStar(require("./types/auth-activity-slack-thread"), exports);
388
388
  __exportStar(require("./types/twap-session"), exports);
389
389
  __exportStar(require("./types/twap-session-status"), exports);
390
+ __exportStar(require("./types/bulk-crypto-payout"), exports);
391
+ __exportStar(require("./types/bulk-crypto-payout-status"), exports);
392
+ __exportStar(require("./types/bulk-bank-payout"), exports);
393
+ __exportStar(require("./types/bulk-bank-payout-status"), exports);
390
394
  __exportStar(require("./classes/KYCFieldClass"), exports);
391
395
  __exportStar(require("./classes/KYCFileClass"), exports);
392
396
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -0,0 +1,7 @@
1
+ export declare enum BulkBankPayoutStatus {
2
+ AwaitingOrders = "awaitingOrders",
3
+ AwaitingPayout = "awaitingPayout",
4
+ Complete = "complete",
5
+ Failed = "failed",
6
+ Cancelled = "cancelled"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BulkBankPayoutStatus = void 0;
4
+ var BulkBankPayoutStatus;
5
+ (function (BulkBankPayoutStatus) {
6
+ BulkBankPayoutStatus["AwaitingOrders"] = "awaitingOrders";
7
+ BulkBankPayoutStatus["AwaitingPayout"] = "awaitingPayout";
8
+ BulkBankPayoutStatus["Complete"] = "complete";
9
+ BulkBankPayoutStatus["Failed"] = "failed";
10
+ BulkBankPayoutStatus["Cancelled"] = "cancelled";
11
+ })(BulkBankPayoutStatus = exports.BulkBankPayoutStatus || (exports.BulkBankPayoutStatus = {}));
@@ -0,0 +1,21 @@
1
+ import { BulkBankPayoutStatus } from "./bulk-bank-payout-status";
2
+ import { Country } from "./country";
3
+ import { Fiat } from "./fiat";
4
+ export interface BulkBankPayout {
5
+ id: string;
6
+ createdAt: Date;
7
+ userId: string;
8
+ orderIds: string[];
9
+ amount: number;
10
+ fiat: Fiat;
11
+ country: Country;
12
+ payoutBankAccountId?: string;
13
+ bankName?: string;
14
+ reference?: string;
15
+ accountNumber?: string;
16
+ CLABE?: string;
17
+ RUC?: string;
18
+ RFC?: string;
19
+ CCI?: string;
20
+ status: BulkBankPayoutStatus;
21
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export declare enum BulkCryptoPayoutStatus {
2
+ AwaitingOrders = "awaitingOrders",
3
+ AwaitingPayout = "awaitingPayout",
4
+ Complete = "complete",
5
+ Failed = "failed",
6
+ Cancelled = "cancelled"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BulkCryptoPayoutStatus = void 0;
4
+ var BulkCryptoPayoutStatus;
5
+ (function (BulkCryptoPayoutStatus) {
6
+ BulkCryptoPayoutStatus["AwaitingOrders"] = "awaitingOrders";
7
+ BulkCryptoPayoutStatus["AwaitingPayout"] = "awaitingPayout";
8
+ BulkCryptoPayoutStatus["Complete"] = "complete";
9
+ BulkCryptoPayoutStatus["Failed"] = "failed";
10
+ BulkCryptoPayoutStatus["Cancelled"] = "cancelled";
11
+ })(BulkCryptoPayoutStatus = exports.BulkCryptoPayoutStatus || (exports.BulkCryptoPayoutStatus = {}));
@@ -0,0 +1,15 @@
1
+ import { BulkCryptoPayoutStatus } from "./bulk-crypto-payout-status";
2
+ import { Country } from "./country";
3
+ import { Crypto } from "./crypto";
4
+ export interface BulkCryptoPayout {
5
+ id: string;
6
+ createdAt: Date;
7
+ userId: string;
8
+ orderIds: string[];
9
+ amount: number;
10
+ crypto: Crypto;
11
+ country: Country;
12
+ payoutAddressId?: string;
13
+ blockchainAddress?: string;
14
+ status: BulkCryptoPayoutStatus;
15
+ }
@@ -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.2252",
3
+ "version": "1.0.2253",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",