@riocrypto/common 1.0.1410 → 1.0.1411

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.
@@ -168,15 +168,6 @@ export declare class RioAdminClient {
168
168
  }>;
169
169
  createBankAccount(userId: string, country: Country, fiat: Fiat, bankName: string, accountHolderName: string, accountNumber: string, swiftCode?: string, CLABE?: string, CCI?: string, notes?: string): Promise<BankAccount>;
170
170
  updateBankAccount(id: string, data: {
171
- userId?: string;
172
- country?: Country;
173
- fiat?: Fiat;
174
- bankName?: string;
175
- accountHolderName?: string;
176
- accountNumber?: string;
177
- swiftCode?: string;
178
- CCI?: string;
179
- CLABE?: string;
180
171
  notes?: string;
181
172
  approved?: boolean;
182
173
  }): Promise<BankAccount>;
@@ -141,14 +141,6 @@ export declare class RioClient {
141
141
  }): Promise<string>;
142
142
  createBankAccount(userId: string, country: Country, fiat: Fiat, bankName: string, accountHolderName: string, accountNumber: string, swiftCode?: string, CLABE?: string, CCI?: string, notes?: string): Promise<BankAccount>;
143
143
  updateBankAccount(id: string, data: {
144
- country?: Country;
145
- fiat?: Fiat;
146
- bankName?: string;
147
- accountHolderName?: string;
148
- accountNumber?: string;
149
- swiftCode?: string;
150
- CCI?: string;
151
- CLABE?: string;
152
144
  notes?: string;
153
145
  }): Promise<BankAccount>;
154
146
  getFeesByVolume(): Promise<{
@@ -3,6 +3,6 @@ import { Subjects } from "./subjects";
3
3
  export interface BankAccountDeletedEvent {
4
4
  subject: Subjects.BankAccountDeleted;
5
5
  data: {
6
- bankAcount: BankAccount;
6
+ bankAccount: BankAccount;
7
7
  };
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1410",
3
+ "version": "1.0.1411",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",