@riocrypto/common 1.0.924 → 1.0.926

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.
@@ -14,6 +14,5 @@ export interface BankAccountUpdatedEvent {
14
14
  approved?: boolean;
15
15
  swiftCode?: string;
16
16
  notes?: string;
17
- bitsoBankCode?: string;
18
17
  };
19
18
  }
package/build/index.d.ts CHANGED
@@ -158,6 +158,7 @@ export * from "./types/bank-transfer";
158
158
  export * from "./types/webhook-registration";
159
159
  export * from "./types/chained-quote";
160
160
  export * from "./types/bitso-bank-account";
161
+ export * from "./types/bitso-receiving-account";
161
162
  export * from "./classes/Asset";
162
163
  export * from "./classes/CountryAsset";
163
164
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -174,6 +174,7 @@ __exportStar(require("./types/bank-transfer"), exports);
174
174
  __exportStar(require("./types/webhook-registration"), exports);
175
175
  __exportStar(require("./types/chained-quote"), exports);
176
176
  __exportStar(require("./types/bitso-bank-account"), exports);
177
+ __exportStar(require("./types/bitso-receiving-account"), exports);
177
178
  __exportStar(require("./classes/Asset"), exports);
178
179
  __exportStar(require("./classes/CountryAsset"), exports);
179
180
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -12,5 +12,4 @@ export interface BankAccount {
12
12
  approved: boolean;
13
13
  swiftCode?: string;
14
14
  notes?: string;
15
- bitsoBankCode?: string;
16
15
  }
@@ -0,0 +1,6 @@
1
+ export interface BitsoReceivingAccount {
2
+ id: string;
3
+ userId: string;
4
+ bankAccountId: string;
5
+ BitsoReceivingAccountId: string;
6
+ }
@@ -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.924",
3
+ "version": "1.0.926",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",