@riocrypto/common 1.0.2252 → 1.0.2254
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 +4 -0
- package/build/index.js +4 -0
- package/build/types/bulk-bank-payout-status.d.ts +7 -0
- package/build/types/bulk-bank-payout-status.js +11 -0
- package/build/types/bulk-bank-payout.d.ts +19 -0
- package/build/types/bulk-bank-payout.js +2 -0
- package/build/types/bulk-crypto-payout-status.d.ts +7 -0
- package/build/types/bulk-crypto-payout-status.js +11 -0
- package/build/types/bulk-crypto-payout.d.ts +15 -0
- package/build/types/bulk-crypto-payout.js +2 -0
- package/package.json +1 -1
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,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,19 @@
|
|
|
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
|
+
CCI?: string;
|
|
18
|
+
status: BulkBankPayoutStatus;
|
|
19
|
+
}
|
|
@@ -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
|
+
}
|