@riocrypto/common 1.0.1719 → 1.0.1720

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,6 +1,5 @@
1
1
  export interface BankPayment {
2
2
  orderId: string;
3
- PIXBarcode?: string;
4
3
  bankName?: string;
5
4
  companyName?: string;
6
5
  USBankTransferMethod?: "wire" | "ach_push";
@@ -9,11 +8,6 @@ export interface BankPayment {
9
8
  accountNumber?: string;
10
9
  routingNumber?: string;
11
10
  reference?: string;
12
- clabe?: string;
13
- ruc?: string;
14
- rfc?: string;
15
- swiftCode?: string;
16
- cci?: string;
17
11
  CLABE?: string;
18
12
  RUC?: string;
19
13
  RFC?: string;
@@ -0,0 +1,8 @@
1
+ export declare enum BulkBankPaymentStatus {
2
+ AwaitingPayment = "awaitingPayment",
3
+ Complete = "complete",
4
+ Failed = "failed",
5
+ Cancelled = "cancelled",
6
+ InsufficientAmountReceived = "insufficientAmountReceived",
7
+ ExcessAmountReceived = "excessAmountReceived"
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BulkBankPaymentStatus = void 0;
4
+ var BulkBankPaymentStatus;
5
+ (function (BulkBankPaymentStatus) {
6
+ BulkBankPaymentStatus["AwaitingPayment"] = "awaitingPayment";
7
+ BulkBankPaymentStatus["Complete"] = "complete";
8
+ BulkBankPaymentStatus["Failed"] = "failed";
9
+ BulkBankPaymentStatus["Cancelled"] = "cancelled";
10
+ BulkBankPaymentStatus["InsufficientAmountReceived"] = "insufficientAmountReceived";
11
+ BulkBankPaymentStatus["ExcessAmountReceived"] = "excessAmountReceived";
12
+ })(BulkBankPaymentStatus = exports.BulkBankPaymentStatus || (exports.BulkBankPaymentStatus = {}));
@@ -0,0 +1,14 @@
1
+ import { BulkBankPaymentStatus } from "./bulk-bank-payment-status";
2
+ export interface BulkBankPayment {
3
+ orderIds: string[];
4
+ bankName?: string;
5
+ companyName?: string;
6
+ companyAddress?: string;
7
+ bankAddress?: string;
8
+ reference?: string;
9
+ CLABE?: string;
10
+ RUC?: string;
11
+ RFC?: string;
12
+ CCI?: string;
13
+ status: BulkBankPaymentStatus;
14
+ }
@@ -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.1719",
3
+ "version": "1.0.1720",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",