@riocrypto/common 1.0.2271 → 1.0.2273

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.
@@ -1,5 +1,8 @@
1
1
  export declare enum BulkBankPaymentStatus {
2
2
  AwaitingPayment = "awaitingPayment",
3
+ AwaitingAsyncPayment = "awaitingAsyncPayment",
4
+ AwaitingAsyncPayoutForOrders = "awaitingAsyncPayoutForOrders",
5
+ AwaitingOrders = "awaitingOrders",
3
6
  Complete = "complete",
4
7
  Failed = "failed",
5
8
  Cancelled = "cancelled",
@@ -4,6 +4,9 @@ exports.BulkBankPaymentStatus = void 0;
4
4
  var BulkBankPaymentStatus;
5
5
  (function (BulkBankPaymentStatus) {
6
6
  BulkBankPaymentStatus["AwaitingPayment"] = "awaitingPayment";
7
+ BulkBankPaymentStatus["AwaitingAsyncPayment"] = "awaitingAsyncPayment";
8
+ BulkBankPaymentStatus["AwaitingAsyncPayoutForOrders"] = "awaitingAsyncPayoutForOrders";
9
+ BulkBankPaymentStatus["AwaitingOrders"] = "awaitingOrders";
7
10
  BulkBankPaymentStatus["Complete"] = "complete";
8
11
  BulkBankPaymentStatus["Failed"] = "failed";
9
12
  BulkBankPaymentStatus["Cancelled"] = "cancelled";
@@ -1,5 +1,6 @@
1
1
  import { BulkBankPaymentStatus } from "./bulk-bank-payment-status";
2
2
  import { Country } from "./country";
3
+ import { DeferredPaymentType } from "./deferred-payment-type";
3
4
  import { Fiat } from "./fiat";
4
5
  export interface BulkBankPayment {
5
6
  id: string;
@@ -9,6 +10,7 @@ export interface BulkBankPayment {
9
10
  amount: number;
10
11
  fiat: Fiat;
11
12
  country: Country;
13
+ deferredPaymentType: DeferredPaymentType;
12
14
  amountPaid?: number;
13
15
  orderIdsPaid?: string[];
14
16
  bankName?: string;
@@ -1,6 +1,9 @@
1
1
  export declare enum BulkBankPayoutStatus {
2
2
  AwaitingOrders = "awaitingOrders",
3
+ AwaitingPaymentForOrders = "awaitingPaymentForOrders",
4
+ AwaitingAsyncPayoutRequest = "awaitingAsyncPayoutRequest",
3
5
  AwaitingPayout = "awaitingPayout",
6
+ AwaitingAsyncPayout = "awaitingAsyncPayout",
4
7
  Complete = "complete",
5
8
  Failed = "failed",
6
9
  Cancelled = "cancelled"
@@ -4,7 +4,10 @@ exports.BulkBankPayoutStatus = void 0;
4
4
  var BulkBankPayoutStatus;
5
5
  (function (BulkBankPayoutStatus) {
6
6
  BulkBankPayoutStatus["AwaitingOrders"] = "awaitingOrders";
7
+ BulkBankPayoutStatus["AwaitingPaymentForOrders"] = "awaitingPaymentForOrders";
8
+ BulkBankPayoutStatus["AwaitingAsyncPayoutRequest"] = "awaitingAsyncPayoutRequest";
7
9
  BulkBankPayoutStatus["AwaitingPayout"] = "awaitingPayout";
10
+ BulkBankPayoutStatus["AwaitingAsyncPayout"] = "awaitingAsyncPayout";
8
11
  BulkBankPayoutStatus["Complete"] = "complete";
9
12
  BulkBankPayoutStatus["Failed"] = "failed";
10
13
  BulkBankPayoutStatus["Cancelled"] = "cancelled";
@@ -1,5 +1,6 @@
1
1
  import { BulkBankPayoutStatus } from "./bulk-bank-payout-status";
2
2
  import { Country } from "./country";
3
+ import { DeferredPaymentType } from "./deferred-payment-type";
3
4
  import { Fiat } from "./fiat";
4
5
  export interface BulkBankPayout {
5
6
  id: string;
@@ -9,6 +10,7 @@ export interface BulkBankPayout {
9
10
  amount: number;
10
11
  fiat: Fiat;
11
12
  country: Country;
13
+ deferredPaymentType: DeferredPaymentType;
12
14
  payoutBankAccountId?: string;
13
15
  bankName?: string;
14
16
  reference?: string;
@@ -1,6 +1,8 @@
1
1
  export declare enum BulkCryptoPaymentStatus {
2
2
  AwaitingDepositAddress = "awaitingDepositAddress",
3
+ AwaitingOrders = "awaitingOrders",
3
4
  AwaitingPayment = "awaitingPayment",
5
+ AwaitingAsyncPayment = "awaitingAsyncPayment",
4
6
  Complete = "complete",
5
7
  Failed = "failed",
6
8
  Cancelled = "cancelled",
@@ -4,7 +4,9 @@ exports.BulkCryptoPaymentStatus = void 0;
4
4
  var BulkCryptoPaymentStatus;
5
5
  (function (BulkCryptoPaymentStatus) {
6
6
  BulkCryptoPaymentStatus["AwaitingDepositAddress"] = "awaitingDepositAddress";
7
+ BulkCryptoPaymentStatus["AwaitingOrders"] = "awaitingOrders";
7
8
  BulkCryptoPaymentStatus["AwaitingPayment"] = "awaitingPayment";
9
+ BulkCryptoPaymentStatus["AwaitingAsyncPayment"] = "awaitingAsyncPayment";
8
10
  BulkCryptoPaymentStatus["Complete"] = "complete";
9
11
  BulkCryptoPaymentStatus["Failed"] = "failed";
10
12
  BulkCryptoPaymentStatus["Cancelled"] = "cancelled";
@@ -1,6 +1,7 @@
1
1
  import { BulkCryptoPaymentStatus } from "./bulk-crypto-payment-status";
2
2
  import { Country } from "./country";
3
3
  import { Crypto } from "./crypto";
4
+ import { DeferredPaymentType } from "./deferred-payment-type";
4
5
  export interface BulkCryptoPayment {
5
6
  id: string;
6
7
  createdAt: Date;
@@ -9,6 +10,7 @@ export interface BulkCryptoPayment {
9
10
  amount: number;
10
11
  crypto: Crypto;
11
12
  country: Country;
13
+ deferredPaymentType: DeferredPaymentType;
12
14
  amountPaid?: number;
13
15
  orderIdsPaid?: string[];
14
16
  depositAddress?: string;
@@ -1,6 +1,10 @@
1
1
  export declare enum BulkCryptoPayoutStatus {
2
+ AwaitingPaymentForOrders = "awaitingPaymentForOrders",
2
3
  AwaitingOrders = "awaitingOrders",
4
+ AwaitingPayoutRequest = "awaitingPayoutRequest",
3
5
  AwaitingPayout = "awaitingPayout",
6
+ AwaitingAsyncPayout = "awaitingAsyncPayout",
7
+ AwaitingAsyncPayoutRequest = "awaitingAsyncPayoutRequest",
4
8
  Complete = "complete",
5
9
  Failed = "failed",
6
10
  Cancelled = "cancelled"
@@ -3,8 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.BulkCryptoPayoutStatus = void 0;
4
4
  var BulkCryptoPayoutStatus;
5
5
  (function (BulkCryptoPayoutStatus) {
6
+ BulkCryptoPayoutStatus["AwaitingPaymentForOrders"] = "awaitingPaymentForOrders";
6
7
  BulkCryptoPayoutStatus["AwaitingOrders"] = "awaitingOrders";
8
+ BulkCryptoPayoutStatus["AwaitingPayoutRequest"] = "awaitingPayoutRequest";
7
9
  BulkCryptoPayoutStatus["AwaitingPayout"] = "awaitingPayout";
10
+ BulkCryptoPayoutStatus["AwaitingAsyncPayout"] = "awaitingAsyncPayout";
11
+ BulkCryptoPayoutStatus["AwaitingAsyncPayoutRequest"] = "awaitingAsyncPayoutRequest";
8
12
  BulkCryptoPayoutStatus["Complete"] = "complete";
9
13
  BulkCryptoPayoutStatus["Failed"] = "failed";
10
14
  BulkCryptoPayoutStatus["Cancelled"] = "cancelled";
@@ -1,6 +1,7 @@
1
1
  import { BulkCryptoPayoutStatus } from "./bulk-crypto-payout-status";
2
2
  import { Country } from "./country";
3
3
  import { Crypto } from "./crypto";
4
+ import { DeferredPaymentType } from "./deferred-payment-type";
4
5
  export interface BulkCryptoPayout {
5
6
  id: string;
6
7
  createdAt: Date;
@@ -9,6 +10,7 @@ export interface BulkCryptoPayout {
9
10
  amount: number;
10
11
  crypto: Crypto;
11
12
  country: Country;
13
+ deferredPaymentType: DeferredPaymentType;
12
14
  payoutAddressId?: string;
13
15
  blockchainAddress?: string;
14
16
  status: BulkCryptoPayoutStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2271",
3
+ "version": "1.0.2273",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",