@riocrypto/common 1.0.1719 → 1.0.1721

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
@@ -282,6 +282,8 @@ export * from "./types/internal-trade";
282
282
  export * from "./types/internal-trade-status";
283
283
  export * from "./types/internal-trade-type";
284
284
  export * from "./types/internal-trade-strategy";
285
+ export * from "./types/bulk-bank-payment";
286
+ export * from "./types/bulk-bank-payment-status";
285
287
  export * from "./classes/Asset";
286
288
  export * from "./classes/KYCFieldClass";
287
289
  export * from "./classes/KYCFileClass";
package/build/index.js CHANGED
@@ -298,6 +298,8 @@ __exportStar(require("./types/internal-trade"), exports);
298
298
  __exportStar(require("./types/internal-trade-status"), exports);
299
299
  __exportStar(require("./types/internal-trade-type"), exports);
300
300
  __exportStar(require("./types/internal-trade-strategy"), exports);
301
+ __exportStar(require("./types/bulk-bank-payment"), exports);
302
+ __exportStar(require("./types/bulk-bank-payment-status"), exports);
301
303
  __exportStar(require("./classes/Asset"), exports);
302
304
  __exportStar(require("./classes/KYCFieldClass"), exports);
303
305
  __exportStar(require("./classes/KYCFileClass"), exports);
@@ -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.1721",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",