@riocrypto/common 1.0.539 → 1.0.540

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
@@ -130,6 +130,7 @@ export * from "./types/platform-fee-range";
130
130
  export * from "./types/api-key";
131
131
  export * from "./types/authorization-type";
132
132
  export * from "./types/refresh-token";
133
+ export * from "./types/bank-payment";
133
134
  export * from "./classes/Asset";
134
135
  export * from "./classes/CountryAsset";
135
136
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -146,6 +146,7 @@ __exportStar(require("./types/platform-fee-range"), exports);
146
146
  __exportStar(require("./types/api-key"), exports);
147
147
  __exportStar(require("./types/authorization-type"), exports);
148
148
  __exportStar(require("./types/refresh-token"), exports);
149
+ __exportStar(require("./types/bank-payment"), exports);
149
150
  __exportStar(require("./classes/Asset"), exports);
150
151
  __exportStar(require("./classes/CountryAsset"), exports);
151
152
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -0,0 +1,12 @@
1
+ export interface BankPayment {
2
+ orderId: string;
3
+ bankName: string;
4
+ companyName: string;
5
+ bankAddress: string;
6
+ accountNumber: string;
7
+ clabe?: string;
8
+ ruc?: string;
9
+ rfc?: string;
10
+ swiftCode?: string;
11
+ status: string;
12
+ }
@@ -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.539",
3
+ "version": "1.0.540",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",